home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / DEF / Define / Rhythm / def-rhythm-mask < prev   
Text File  |  1998-10-23  |  962b  |  25 lines

  1. def-rhythm-mask <instruments&lengths&rhythms&symbols>
  2.  
  3. Defines the note lengths and symbols for each instrument. This function is suitable for defining drums and percussion instruments. It is very flexible and can adapt to different type defining situations. The difference between this masking version and the non-masking def-rhythm is that here the symbol pattern is interpreted as it is and the rhythm string plays&mutes the symbols from that source material. Compare the following
  4.  
  5. (def-rhythm-mask  
  6. ;               1       2
  7. ;               !---.---!  fill
  8. solo   '1/16   "- - --- "  (a b c)
  9.  
  10. (symbol-of solo) 
  11. --> (a = c = b c a =)
  12.  
  13. (def-rhythm
  14. ;               1       2
  15. ;               !---.---!  fill
  16. solo   '1/16   "- - --- "  (a b c)
  17.  
  18. (symbol-of solo) 
  19. --> (a = b = c a b =)
  20.  
  21. The instrument can be a single instrument, or instrument group defined with def-orchestra. The properties are inherited to all sub-groups and instruments of the group.
  22.  
  23.